home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / dskut / docp_1_1.zip / ELIB.H < prev    next >
C/C++ Source or Header  |  1992-04-29  |  729b  |  28 lines

  1. /*
  2.  * monk.h
  3.  *
  4.  * header file for Monk C library functions - Atari ST version
  5.  *
  6.  * Roy Bixler
  7.  * Monk Software
  8.  * March 31, 1991
  9.  */
  10.  
  11.  
  12.  
  13. #define HASH_TAB_SIZE 211
  14. #define PATH_SEPARATOR "\\"
  15.  
  16. /* monklib.c */
  17. int getopt(int argc, char **argv, char *opts);
  18. int ask_user(char *buf);
  19. int hashpjw(char *s);
  20. int is_special(char *d_name);
  21. long cmptime(const struct ffblk *a, const struct ffblk *b);
  22. char *append_dir_to_path(char *path, char *dir);
  23. int delete_file(char *file, char force);
  24. char *skip_whitespace(char *str);
  25. int mark_list(char *num_list, char *mark_list, int max_num);
  26. void zap_trailing_nl(char *str, int max_ch, FILE *stream);
  27. void format_dir(char *dir, char app_slash, char *formatted_dir);
  28.